github.com/go-pg/migrations/v8.Collection.tableName (field)

12 uses

	github.com/go-pg/migrations/v8 (current package)
		collection.go#L39: 	tableName               string
		collection.go#L49: 		tableName: "gopg_migrations",
		collection.go#L58: 	c.tableName = tableName
		collection.go#L63: 	if ind := strings.IndexByte(c.tableName, '.'); ind >= 0 {
		collection.go#L64: 		return c.tableName[:ind], c.tableName[ind+1:]
		collection.go#L66: 	return "public", c.tableName
		collection.go#L426: 		err = fmt.Errorf("table %q does not exist; did you run init?", c.tableName)
		collection.go#L629: 	`, pg.SafeQuery(c.tableName))
		collection.go#L642: 	`, pg.SafeQuery(c.tableName), version)
		collection.go#L665: 	`, pg.SafeQuery(c.tableName))
		collection.go#L693: 	_, err = tx.Exec("LOCK TABLE ? IN EXCLUSIVE MODE", pg.SafeQuery(c.tableName))